home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 2 / 002.d81 / dos part 2 < prev    next >
Text File  |  2022-08-26  |  3KB  |  197 lines

  1.   Commodore VIC 1541 Tutorial Part 2
  2.   ========= === ==== ======== ==== =
  3.   note: (part 1 was on LOADSTAR # 1)
  4.  
  5.  
  6.     by: Joel Ellis Rea
  7.  
  8.  
  9.    Last month we discussed the ances-
  10.  
  11. try of the 1541 disk drive.  If you
  12.  
  13. missed it, check out the back issues
  14.  
  15. offer.
  16.  
  17.    This month we will discuss the bas-
  18.  
  19. ics of how the disk holds information,
  20.  
  21. and how to do the four most important
  22.  
  23. operations on a disk:
  24.  
  25.    1.  Format a NEW disk so that
  26.  
  27.        information can be organized
  28.  
  29.        on the surface of the disk.
  30.  
  31.    2.  SAVE a program onto the disk.
  32.  
  33.    3.  LOAD a program from the disk.
  34.  
  35.    4.  Make a BACKUP of the infor-
  36.  
  37.        mation from one disk to an-
  38.  
  39.        other in case Murphy visits!
  40.  
  41.  
  42.    We will not discuss the why's and
  43.  
  44. wherefore's of the particular commands
  45.  
  46. and syntaxes and such this time.  We
  47.  
  48. will just show the commands.
  49.  
  50.    When you got your disk drive, you
  51.  
  52. more than likely received a disk en-
  53.  
  54. titled "1541 TEST/DEMO".  If you have
  55.  
  56. no such disk, go out and buy a copy of
  57.  
  58. the "1541 Bonus Pack" disk from a lo-
  59.  
  60. cal dealer.  It is inexpensive and
  61.  
  62. very useful!
  63.  
  64.    With the "1541 TEST/DEMO" disk in
  65.  
  66. your drive, type:
  67.  
  68.    LOAD "C-64 WEDGE",8: (at this point
  69.  
  70.      hold down the SHIFT key and press
  71.  
  72.      the RUN/STOP key.  DO NOT hit RE-
  73.  
  74.      TURN!)
  75.  
  76.    This will load and run DOS Manager
  77.  
  78. Version 5.1, also known as the DOS
  79.  
  80. Support Program or the DOS Wedge.  You
  81.  
  82. should load the DOS Manager (herafter
  83.  
  84. called the Manager) every time you
  85.  
  86. turn on your computer, except when you
  87.  
  88. are just going to run a pre-packaged
  89.  
  90. program like Loadstar.
  91.  
  92.    If you have the Disk Bonus Pack in-
  93.  
  94. stead of the 1541 TEST/DEMO disk, you
  95.  
  96. will have to insert it instead and
  97.  
  98. type:
  99.  
  100.    LOAD " DOS 5.1",8,1
  101.  
  102.    Wait for the drive to stop and the
  103.  
  104. word "READY." to appear, then type:
  105.  
  106.    SYS 52224
  107.  
  108.    That will also activate the Manager
  109.  
  110. for you.
  111.  
  112.    The Manager makes it easier to use
  113.  
  114. the disk drive.  You can use the drive
  115.  
  116. without it, but it is much more tedi-
  117.  
  118. ous.  We will not discuss non-Manager
  119.  
  120. commands this time.
  121.  
  122.    Before you can use a new, blank
  123.  
  124. disk, the disk must first be prepared
  125.  
  126. for use by a 1541 drive.  This prepar-
  127.  
  128. ation is called "formatting".  This
  129.  
  130. needs to be done only once per disk
  131.  
  132. unless the disk is physically erased,
  133.  
  134. partially or completely.  You should
  135.  
  136. format all of your blank disks as soon
  137.  
  138. as you get them home!
  139.  
  140.    To format a disk, type:
  141.  
  142.    @NEW0:disk name,id
  143.  
  144.    The "disk name" can be any name of
  145.  
  146. your choice up to 16 characters long.
  147.  
  148. It cannot contain a comma, colon, as-
  149.  
  150. terisk, question mark or quote.  The
  151.  
  152. "id" is a Disk Identifier.  It must be
  153.  
  154. exactly two characters long, with the
  155.  
  156. same restrictions on legal characters
  157.  
  158. as the "disk name".  WARNING!  The
  159.  
  160. disk "id" MUST be DIFFERENT on EVERY
  161.  
  162. DISK YOU OWN!!!   Some examples:
  163.  
  164.    @NEW0:JUNQUE DISQUE,JD
  165.  
  166.    @NEW0:MY LETTERS #1,L1
  167.  
  168.    @NEW0:ACCOUNTING 5,A5
  169.  
  170. Some examples of illegal format com-
  171.  
  172. mands:
  173.  
  174.    @NEW0MY FAVORITE,MF
  175.    (No colon)
  176.  
  177.    @NEW0:"GOOFY" STUFF,GS
  178.    (Quotes in disk name)
  179.  
  180.    @NEW0:LOADSTAR PROGRAMS,LP
  181.    (Disk name too long)
  182.  
  183.    @NEW0:DISK #1,1
  184.    (Id too short)
  185.  
  186.    @NEW0:DATA DISK
  187.    (No id.  This is legal, but the
  188.    disk will not be formatted --
  189.    just erased and renamed.  Use
  190.    this to re-use an already for-
  191.    matted disk that has nothing
  192.    on it you want to keep.)
  193.  
  194. -------------<continued>--------------
  195.              (x to exit)
  196.  
  197.